Welcome![Sign In][Sign Up]
Location:
Search - Radix Sort

Search list

[Othersort-all

Description: 本程序完成实验要求的全部功能直接插入排序、SHELL排序、冒泡排序、快速排序、简单选择排序、堆排序、归并排序、基数排序,程序代码符合书写规范,实验报告叙述清晰完整,有详尽的分析和总结。 在实验过程中,积极配合本团队分工合作的精神,努力学习,总算不负众望,将程序编好,在此,我更想感谢的是老师的教导,在她的帮助下,我才顺利完成了本次的任务。 -the experimental procedures are completed all the functional requirements of the direct insertion sort, Shell sort, bubble sort, Quick Sort, the simple choice of sequencing, heap sort, merge sort, radix sort, code written with norms, Experimental report describes a distinct and comprehensive, detailed analysis and summary. In the course of the experiment, the team actively cooperate with the division of labor, study hard, and finally delivered to the completion of procedures, in this, I also want to thank the teacher is teaching, in her help, I will have completed this task.
Platform: | Size: 97242 | Author: 马全 | Hits:

[Mathimatics-Numerical algorithmsMultiSort

Description: Merge, Insertion, Radix, Heap, Bucket, Quick, Counting排序算法-Sort Algorithm about Merge, Insertion, Radix, Heap, Bucket, Quick, Counting
Platform: | Size: 5120 | Author: 站长 | Hits:

[Othersort-all

Description: 本程序完成实验要求的全部功能直接插入排序、SHELL排序、冒泡排序、快速排序、简单选择排序、堆排序、归并排序、基数排序,程序代码符合书写规范,实验报告叙述清晰完整,有详尽的分析和总结。 在实验过程中,积极配合本团队分工合作的精神,努力学习,总算不负众望,将程序编好,在此,我更想感谢的是老师的教导,在她的帮助下,我才顺利完成了本次的任务。 -the experimental procedures are completed all the functional requirements of the direct insertion sort, Shell sort, bubble sort, Quick Sort, the simple choice of sequencing, heap sort, merge sort, radix sort, code written with norms, Experimental report describes a distinct and comprehensive, detailed analysis and summary. In the course of the experiment, the team actively cooperate with the division of labor, study hard, and finally delivered to the completion of procedures, in this, I also want to thank the teacher is teaching, in her help, I will have completed this task.
Platform: | Size: 97280 | Author: 马全 | Hits:

[Othersort

Description: 一 :排序n个元素,元素为随机生成的长为1~16的字符串,n的取值为2k(k取4、6、8、10、12、16、18、20),排序算法分别为直接插入排序, 冒泡排序,堆排序,归并排序,快速排序,比较各种排序在不同输入下的运行时间. 二:排序n个元素,元素为随机生成的1~10000的正整数,n的取值为2k(k取4、6、8、10、12、16、18、20),排序算法分别为直接插入排序,快速排序,基数排序,计数排序,比较各种排序在不同输入下的运行时间.-1: sort n elements, element for a length of randomly generated 1 ~ 16 of the string, n value for 2k (k check 4,6,8,10,12,16,18,20), sorting algorithms, respectively, for direct insertion sort, bubble sort, heap sort, merge sort, quick sort, compare different sort of run-time input. b: to sort n elements, element for the randomly generated one ~ 10000 positive integer, n value for 2k (k check 4,6,8,10,12,16,18,20), sorting algorithms, respectively, for direct insertion sort, Quick Sort, Radix Sort, Counting Sort, compare, under different input in order the running time.
Platform: | Size: 3072 | Author: mhb | Hits:

[Data structsordering5

Description: 基数排序:思想:先从数据的低位开始,进行分配,分成10个空间,分别存储位为,0,1,2,3...9 重复的对次地位操作,知道预定的高位,排序完成-Radix Sort: thinking: from data low starting distribution, divided into 10 space, storage spaces, respectively, for 0,1,2,3 ... repeated 9 times the status of the operation, to know the scheduled high ranking completed
Platform: | Size: 1024 | Author: 朱洁 | Hits:

[WAP developXRadixSort_Swap

Description: 2009 英特尔® 线程挑战赛—基数排序 使用tbb进行了并行优化 速度很快-Parallel Radix Sort Source
Platform: | Size: 471040 | Author: 邓辉 | Hits:

[Windows Developalgoprograms

Description: bucket sort and radix sort
Platform: | Size: 14336 | Author: konzfadin | Hits:

[Algorithmsort

Description: 用JAVA语言实现的一些排序算法。包括冒泡排序、桶排序、基数排序、堆排序、插入排序、归并排序、快速排序、计数排序、选择排序。-JAVA language using some sorting algorithm. Including bubble sort, bucket sort, radix sort, heap sort, insertion sort, merge sort, quick sort, counting sort, selection sort.
Platform: | Size: 4096 | Author: X | Hits:

[JSP/JavaSort

Description: 5种不同的排序方法,marge排序,基数排序,交换排序,快速排序,heap排序,另外还包括基数排序字母.测试包括,随机和手动,随机测试的是5种排序的时间,和不同大小的数组,都分别排序两边,一边是排序无顺序的数字,第2边是排序已经有顺序的数字,来测试排序的时间,手动就是自己输入数字来进行排序-5 different ranking methods, marge sort, radix sort, exchange sort, quick sort, heap sort, radix sort the letter also included. Testing, including random and manual, random testing is the five kinds of sorting time, and different sizes array, were all sort on both sides, one side is the number of unordered sort, 2 side is the order of the figures have been sorted, to test the sorting of the time, manual input was their number to be sorted
Platform: | Size: 13312 | Author: lai ni | Hits:

[Data structsRadix-Sort

Description: 基数排序(radix sort)则是属于“分配式排序”(distribution sort),基数排序法又称“桶子法”(bucket sort)或bin sort,顾名思义,它是透过键值的部份资讯,将要排序的元素分配至某些“桶”中,藉以达到排序的作用,基数排序法是属于稳定性的排序,其时间复杂度为O (nlog(r)m),其中r为所采取的基数,而m为堆数,在某些时候,基数排序法的效率高于其它的比较性排序法。 -Radix sort (radix sort) is a " distributive sort" (distribution sort), radix sorting method known as " bucket method" (bucket sort) or bin sort, the name suggests, it is a key part of the information through, elements to be assigned to some sort of " bucket" in order to achieve the sort of role in the stability of radix sort is the sorting method is its time complexity is O (nlog (r) m), where r is the base taken , and m is the number of reactors, at some point, radix sorting method is more efficient than other comparable sort.
Platform: | Size: 1024 | Author: mfeng | Hits:

[Data structsRadix-Sort

Description: 自己写的基数排序的三个版本,对经典的基数排序有小小的改进。-Three versions of the radix sort, write your own classic radix sort, a little bit of improvement.
Platform: | Size: 1121280 | Author: kang | Hits:

[CSharpRadix-sort-c-source-code

Description: C语言中用于排序的代码:基数排序c源代码,使用初学者-Radix sort c source code c source code of radix sort, radix sort c source code
Platform: | Size: 1024 | Author: 王振 | Hits:

[OtherRadix-sort

Description: 排序算法之基数排序法 此算法非常适合用于初学数据结构的人 是十大经典排序算法之一-Radix sort method of sorting algorithms
Platform: | Size: 1024 | Author: 满达 | Hits:

[VC/MFCradix-sort

Description: program to find out radix sort
Platform: | Size: 9216 | Author: prabhu | Hits:

[Linux-Unixradix-sort

Description: 在linux环境下用MPI实现多线程的基数排序算法。-Radix sort algorithm of multi-threaded MPI implementation in the linux environment.
Platform: | Size: 7168 | Author: 曹操 | Hits:

[OtherRadix-Sort

Description: 数据结构排序中的堆排序算法,时间复杂度为o(n),用顺序表实现-Radix sort
Platform: | Size: 2048 | Author: LSQ | Hits:

[Algorithmradix-sort

Description: 基数排序算法- radix sort
Platform: | Size: 1024 | Author: 卢鸿基 | Hits:

[ConsoleRadix-sort-cpp

Description: Implementatio of Radix sort on c++ Visual studio 2012
Platform: | Size: 2881536 | Author: xdimax | Hits:

[Data structsRadix-Sort

Description: 基数排序是一种非比较型整数排序算法,其原理是将整数按位数切割成不同的数字,然后按每个位数分别比较。- Radix sort is a kind of non comparative sorting algorithm, which is based on the number of integers into different numbers, and then according to the number of each.
Platform: | Size: 595968 | Author: 靳以2002 | Hits:

[Data structsradixsort

Description: radix sort using queue
Platform: | Size: 3261440 | Author: jasso | Hits:
« 12 3 4 5 6 7 8 9 10 »

CodeBus www.codebus.net